home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / sbin / ldconfig < prev    next >
Text File  |  2009-10-07  |  465b  |  18 lines

  1. #!/bin/sh
  2.  
  3. if  test $# = 0                            \
  4.     && test x"$LDCONFIG_NOTRIGGER" = x                \
  5.  && test x"$DPKG_MAINTSCRIPT_PACKAGE" != x            \
  6.  && dpkg-trigger --check-supported 2>/dev/null            \
  7.  && dpkg --compare-versions "$DPKG_RUNNING_VERSION" ge '1.14.5ubuntu10~~'
  8. then
  9.     if dpkg-trigger --no-await ldconfig; then
  10.         if test x"$LDCONFIG_TRIGGER_DEBUG" != x; then
  11.             echo "ldconfig: wrapper deferring update (trigger activated)"
  12.         fi
  13.         exit 0
  14.     fi    
  15. fi
  16.  
  17. exec /sbin/ldconfig.real "$@"
  18.